home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Tool Chest / Development Tools & Languages / Dylan Related / Mindy / Mindy 1.2 - Mac PPC / demos / debug / bank.dylan < prev    next >
Encoding:
Text File  |  1995-03-15  |  298 b   |  15 lines  |  [TEXT/MPCC]

  1. module: Dylan-User
  2.  
  3. // simple bank account simulation.
  4. define variable *bank* = make(<table>);
  5.  
  6. define method main (argv0, #rest args)
  7.     break("testing tables.");
  8.     *bank*["Patrick"] := 100;
  9.     *bank*["Charles"] := 200;
  10.     *bank*["Mary"] := 300;
  11.     for (balance in *bank*)
  12.         print(balance);
  13.     end for;
  14. end;
  15.